home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000257_news@newsmaster….columbia.edu _Sat May 31 14:24:05 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id OAA28280
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 31 May 1997 14:24:05 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id OAA12267
  7.     for kermit.misc@watsun; Sat, 31 May 1997 14:24:04 -0400 (EDT)
  8. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  9. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: x86 solaris and modem speed
  12. Date: 31 May 1997 18:24:01 GMT
  13. Organization: Columbia University
  14. Lines: 48
  15. Message-ID: <5mpqc1$bv9$1@newsmaster.cc.columbia.edu>
  16. References: <5mokcc$f6n$1@news1.rmi.net>
  17. NNTP-Posting-Host: watsun.cc.columbia.edu
  18. Xref: news.columbia.edu comp.protocols.kermit.misc:7107
  19.  
  20. In article <5mokcc$f6n$1@news1.rmi.net>, Blanche Cohen <blanche@rmi.net> wrote:
  21. : Version C-Kermit 6.0.192, for Solaris 2.5.1 x86 - pretty slick!
  22. : Considering that making PPP work on this thing is a nightmare,
  23. : Kermit has definitely become a life saver!
  24. : However, a modem speed problem. I have a Hayes accura 288B, which
  25. : I assume translates to "hayes-high-speed" ...
  26. :
  27. Correct...
  28.  
  29. : .. and then set the speed to 115200, since the default is 9600.
  30. : Everything on my side looks good. But when I connect and attempt to
  31. : download a file, the connection speed is 9600!
  32. :
  33. So that means the two modems have negotiated a V.32 connection.  It was
  34. the best they could agree on, either because that is the highest protocol
  35. supported by the remote modem, or the highest protocol the two modems had
  36. in common, or because the line quality was bad.  Or because your modem or
  37. the other modem has been instructed to force a V.32 connection (C-Kermit
  38. does not do this).
  39.  
  40. : Is this a problem on the other side
  41. : (which is only running 5.0) or something I can change?
  42. :
  43. It has nothing to do with Kermit.  Kermit configures the modem minimally
  44. in order to make the call.  The init string used is:
  45.  
  46.   ATQ0X4N1Y0S37=0S82=128\015
  47.         ^^  ^^^^^
  48. N1 means "When originating, permit negotiation of a common communication
  49. standard at the highest associated line speed supported by both modems.
  50. Begin negotiations from the DCE line speed specified in S37..."
  51.  
  52. And S37=0 means "Speed of last AT command issued", in your case 115200.
  53.  
  54. So it seems almost certain that the dropdown in DCE speed is due to the
  55. answering modem, or to the connection, but not due to C-Kermit or how you
  56. are using it.
  57.  
  58. : Makes downloading 3 MB files rather time consuming, even when I change
  59. : the packet length to 1024 instead of the default 90.
  60. You can do a lot better than this.  Read about how to optmize file transfer in
  61. Chapter 12 of "Using C-Kermit", 2nd edition:
  62.  
  63.   http://www.columbia.edu/kermit/ck60manual.html
  64.  
  65. - Frank